$(document).ready(function(){
	$('HTML').addClass('JS');
	
	// Select all links that contains lightbox in the attribute rel
	$('a[rel*=lightbox]').lightBox({
		imageLoading: '../images/lightbox/lightbox-ico-loading.gif',
		imageBtnClose: '../images/lightbox/lightbox-btn-close.gif',
		imageBtnPrev: '../images/lightbox/lightbox-btn-prev.gif',
		imageBtnNext: '../images/lightbox/lightbox-btn-next.gif',
		imageBlank: '../images/lightbox/lightbox-blank.gif'
	 }); 
	
	if(myCookie=$.cookie('steelfolio-color')){
		console.log(myCookie);
		switchStyle(myCookie);
	}
	if(myCookie=$.cookie('steelfolio-style')){
		switchStyle(myCookie);
	}

	//comment the following line out to deactivate style switching
	$('#switcher a').click(function(){$(this).styleSwitcher();});
	
});

