﻿jQuery(document).ready(function($){								// magnify for images		 $("a.timg, a.imgp").append("<span></span>");            $("a.timg, a.imgp").hover(function(){                $(this).children("span").fadeIn(600);            },function(){                $(this).children("span").fadeOut(100);            });									// homepage fade out fade in images		$(".single-work a").fadeTo("fast", 0.5);		$(".single-work a").hover(function(){      		$(this).fadeTo("fast", 1.0);      		},function(){      			$(this).fadeTo("fast", 0.5);      		});				// slide show in portfolio single		$('.sl').cycle({     		fx:     'fade',     		timeout: 8000,			pause:  1,			prev:   '.sl_left',     		next:   '.sl_right'			    		}); 				// scrollTop        	$('.top').each(function (i) {        $(this).click(function() {      		$('html, body').animate({scrollTop:0}, 'slow', "easeOutQuad"); return false;        });              });							 });
