jQuery(document).ready(function($){
		
	$('#cDropWrap').show();

	$('#flags').mouseover(function(){
		$('#RestCountrys').css('display', 'block');
		$('#cDropWrap').css('margin-top', '-266px');
		
		$('.cDropTop').css('width', '720px');
		$('.cDropTop').css('background', 'url("/images/footer/country-drop-top-small.png") no-repeat 0 0');
		
		$('#flags').css('width', '763px');
		$('#cDropWrap').css('width', '763px');
	});
	
	$('#flags').mouseout(function(){
		$('#RestCountrys').css('display', 'none');
		$('#cDropWrap').css('margin-top', '0px');
		
		$('.cDropTop').css('width', '200px');
		$('.cDropTop').css('background', 'url("/images/footer/country-drop-top.png") no-repeat 0 0');
		
		$('#flags').css('width', '200px');
		$('#cDropWrap').css('width', '200px');
	});

});	
