// JavaScript Document

$(document).ready(function() {
	(function ($) {
	$.fn.vAlign = function() {
		return this.each(function(i){
		var ah = $(this).height();
		var ph = $(this).parent().height();
		var mh = (ph - ah) / 2;
		$(this).css('margin-top', mh);
		});
	};
	})(jQuery);	
	$('#wrapper').vAlign();		
});

$(document).ready(function() {     			
						   
	$(".small_select").msDropDown({ mainCSS: 'dd' });
	$(".big_select").msDropDown({ mainCSS: 'dd2' });											   
	
	if($(window).height() < 640){					  
	  $('#wrapper').css('position','relative');
	  $('#wrapper').css('top','0%');					  
	  $('#wrapper').css('margin-top','0px');					  					  
	}									   
	$(window).resize(function() {
		if($(window).height() < 640){					  
		  $('#wrapper').css('position','relative');
		  $('#wrapper').css('top','0%');					  
		  $('#wrapper').css('margin-top','0px');					  					  
		}
		if($(window).height() > 640){					  
		  $('#wrapper').css('position','fixed');
		  $('#wrapper').css('top','50%');					  
		  $('#wrapper').css('margin-top','-328px');					  					  
		}					
	});								
})


