//COLORBOX
$(document).ready(function(){
				//Examples of Global Changes
				$.fn.colorbox.settings.bgOpacity = "0.9";

				//Examples of how to assign the ColorBox event to elements.
				$("a[rel='shirt']").colorbox({transition:"fade", contentCurrent:"{current} / {total}"});
			    //$(".xs_but, .s_but, .m_but, .l_but, .xl_but, .xxl_but").colorbox({fixedWidth:960, fixedHeight:550});
			    $("a[title='xs_but']").live("click", function(){
				    $(this).colorbox().click();
				    return false;
				}); 
			
});
			
			
