
jQuery('input.btnLink').each(setButtomLink);

jQuery().ready(function(){    


    /*jQuery(function() {	
    	//$('#gallery a img').each(function(){$(this).parent().attr("rel","lightbox[]");});
    	//$('.mainbody-home a[href$=JPG] img').each(function(){$(this).parent().attr("rel","lightbox[]");});
    	jQuery('.typography a[href$=jpg] img').each(function(){jQuery(this).parent().attr("rel","lightbox[]");});    	
        jQuery('a[rel=lightbox[]]').lightbox();

		
        
        //$('.typography a img').lightbox({fixedNavigation:true});
    });	*/

	
	//jQuery('#ex2').jqm({ajax: '/mysite/ball.html', trigger: 'div.ex2trigger'});
	
    
});

	function setButtomLink(){
		jQuery(this).click(function() {
			window.location.href = jQuery(this).attr('rel');
		});
	}
