// JavaScript Document
<!--
$(document).ready(function() {
	var dealer_country_id = '';
	$('#dealer_country').change(function(){
		if(dealer_country_id != ''){
			$('#' + dealer_country_id).stop().animate({opacity:"0"}, 300, function(){
				$(this).css({"display":"none"});
				$('#' + $($('#dealer_country').children('option:selected')).val()).css({"display":"block"});
				$('#' + $($('#dealer_country').children('option:selected')).val()).stop().animate({opacity:"1"}, 300, function(){
					$('.product_item').children('.tabpage').height($($('.product_item').children('.tabpage').children('.tabs')).height() + $(this).height() + 19);
				});
			});
		}
		else{
			if($($(this).children('option:selected')).val() != ''){
				$('#' + $($(this).children('option:selected')).val()).css({"display":"block"});
				$('#' + $($(this).children('option:selected')).val()).stop().animate({opacity:"1"}, 300, function(){
					$('.product_item').children('.tabpage').height($($('.product_item').children('.tabpage').children('.tabs')).height() + $(this).height() + 19);
				});
			}
			else{
				$('#' + dealer_country_id).stop().animate({opacity:"0"}, 300);
			}
		}
		dealer_country_id = $($(this).children('option:selected')).val();
	});
	
	$('#' + $($('#dealer_country').children('option:selected')).val()).css({"display":"block"});
	$('#' + $($('#dealer_country').children('option:selected')).val()).stop().animate({opacity:"1"}, 300);
	dealer_country_id = $($('#dealer_country').children('option:selected')).val();
})
$(window).load(function(){
	
});
