// Portfolio
jQuery.noConflict();
jQuery(document)
		.ready(function() {
			

				jQuery(".image-big a")
						.hover(
								function() {
									jQuery(this)
											.find("img")
											.before(
													"<span class='magnifier' style='visibility: hidden' title='Show Big Image'>Zoom In</span>");
									jQuery(this).find(".magnifier").css( {
										visibility : "visible",
										display : "none"
									}).fadeIn(500);
								}, function() {
									jQuery(this).find(".magnifier").remove();
								});

				
					});
