jQuery(document).ready(function(){
	$(".gallery_image a").lightBox();
	$(".gallery_img a").lightBox();
	$(".menu1").hover(
		function() {
			$(".items").stop(true,true);
			$(this).find(".items").slideDown(150);
		},
		function() {
			$(".items").stop(true,true);
			$(this).find(".items").slideUp(150);
		}
	);
	$(".module_content_item").find('div').each(function() {
		$(this).css('color','none');
		$(this).css('background-color','none');
	});
	$(".module_content_item").find('p').each(function() {
		$(this).css('color','none');
		$(this).css('background-color','none');
	});
	$(".module_content_item").find('span').each(function() {
		$(this).css('color','none');
		$(this).css('background-color','none');
	});
	$(".module_content_item").find('img').each(function(){
		if ($(this).width() > 500) {
			$(this).width(500);
			$(this).wrap("<a href='" + $(this).attr("src") + "'></a>")
			$(".module_content_item a img").parent().lightBox();
		} else if ($(this).width() > 0) {
			$(this).wrap("<a href='" + $(this).attr("src") + "'></a>")
			$(".module_content_item a img").parent().lightBox();
		} else if (!$(this).width()) {
			$(this).load(function() {
				if ($(this).width() > 500) {
					$(this).width(500);
					$(this).wrap("<a href='" + $(this).attr("src") + "'></a>")
					$(".module_content_item a img").parent().lightBox();
				} else if ($(this).width() > 0) {
					$(this).wrap("<a href='" + $(this).attr("src") + "'></a>")
					$(".module_content_item a img").parent().lightBox();
				}
			});
		}
		
	});
});
