﻿jQuery(document).ready(function($){
		
		$('a.timg').lightBox(); // light box links
		$("#slider").easySlider({
		pause:			10000,
		auto: true,
		continuous: true 
		});

		// magnify for images
		 $("a.timg").append("<span></span>");
            $("a.timg").hover(function(){
                $(this).children("span").fadeIn(600);
            },function(){
                $(this).children("span").fadeOut(1);
            });
							
							
 });

