

/* BYO */

jQuery(document).ready(function() {
	jQuery('.osWindows, .osLinux').click(function(){
		changeOS(jQuery(this));
	});
	
});

function changeOS(ele){
	if(!ele){
		ele = jQuery('.osLinux');
		if(jQuery('#os_tbl input:checked').parent().text().indexOf('Windows') > -1){
			ele = jQuery('.osWindows');
		}
	}
	jQuery('#os_tbl tr:not(.header):not(:has(.osSelect))').hide();
	if(ele.hasClass('osWindows')){
		jQuery('#os_tbl tr:not(.header):contains(Windows):not(:has(.osSelect))').show();
	} else {
		jQuery('#os_tbl tr:not(.header):not(:contains(Windows)):not(:has(.osSelect))').show();		
	}
}


function review_from_helper(pid){
	jQuery('#review_form').attr('action', pid);
	jQuery.colorbox({width:"840px", inline:true, href:"#review_light",onClosed:function(){ jQuery('.savedone').html(""); }
});
	}

/* FLICKR GALLERY */
//function() {
//    $('#flickr_div').flickrGallery('32591645@N03','551ea5269b6464e277a7f4fbddd55303');
//}


