$(document).ready(function(){
	$('#articleLists').change(function(){
		if(this.selectedIndex == 1) window.location = '/mcms_page_articlelist_sort.php?groupby=series';
		if(this.selectedIndex == 2) window.location = '/mcms_page_articlelist_sort.php?groupby=category';
		if(this.selectedIndex == 3) window.location = '/mcms_page_articlelist_sort.php?groupby=month';
		if(this.selectedIndex == 4) window.location = '/mcms_page_articlelist_sort.php?groupby=author';		
	});
	
	$("#footer-copyright .copyright-info-links a:first-child").addClass("first");
	$("#footer-copyright .copyright-info-links a:last-child").addClass("last");
	
	$('#home-features #col-3 a[href^="http://"], #footer-social #twitter-feed a[href^="http://"]')
  		.attr("target", "_blank");


   	/*  thickbox fix
	    uses code found at http://snipplr.com/view/5896/get-browser-viewport-width-and-height/
	*/
	var viewportheight;

	if (typeof window.innerWidth != 'undefined'){
	  viewportheight = window.innerHeight;
	}
	else if (typeof document.documentElement != 'undefined'
	        && typeof document.documentElement.clientWidth != 'undefined'
	        && document.documentElement.clientWidth != 0){
	  viewportheight = document.documentElement.clientHeight;
	}
	else{
	  viewportheight = document.getElementsByTagName('body')[0].clientHeight;
	}

	/*  thickbox fix
	    uses code found at http://snipplr.com/view/5896/get-browser-viewport-width-and-height/
	*/

	if ((viewportheight < 550) || (navigator.userAgent.match(/iPad/i)) || (navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {

	   $('a.thickbox').unbind('click');
	   $('a.thickbox').click(function() {
	     window.open(this.href + '&style=http://godchicks.com/_css/login.css', '_self');
	     return false;
	   });
	 }
	
});
