/* Author: 

*/
$(document).ready(function() {
$('#main').masonry({
  singleMode: true, 
  itemSelector: '.col',
  animate: true 
});
$("a[rel='cutin']").colorbox({transition:"none", width:"75%", height:"75%"});
$page = jQuery.url.attr("file");
if(!$page) {
	$page = 'index.php';
}
$('#nav li a').each(function(){
	var $href = $(this).attr('href');
	if ( ($href == $page) || ($href == '') ) {
		$(this).addClass('on');
	} else {
		$(this).removeClass('on');
	}
});
});























