

$(function () {
//mo
var submenu = $('.sub_pic_holder');
var subclick = $('.sub');	
submenu.mouseover(function(event) {
	event.stopImmediatePropagation();
	$(this).animate({"marginTop":"20px"}, 250);
	$('.'+this.id).fadeIn('fast', function() {});
	
});
	
submenu.mouseout(function(event) {
	event.stopImmediatePropagation();
	$(this).animate({"marginTop":"10px"}, 250);
	$('.'+this.id).fadeOut('fast', function() {});

});
	
subclick.mouseup(function(event) {
	event.stopImmediatePropagation();
	window.location = $(this).children('a').attr('href');

});
//
})
