$(document).ready(function() {
	$(".topmenu").parent("li").hover(
		function() {
			$("ul",this).show();
			$(".topmenu a",this).addClass("hovered");
		},
		function() {
			$("ul",this).hide();
			$(".topmenu a",this).removeClass("hovered");
		}	
	);
	
	$(".thumbpics a").click(function() {
		var imgURL = $(this).attr("href");
		$(".profile_images img.bigpic").attr("src",imgURL);
		return false;		
	});
	
});

function loadgal()	{
	window.location.href = "./gallery.php";
	}

function loadgal1()	{
	window.location.href = "./gallery.php";
	}

function OpenKinks (c) {
	if (screen.width / 2 <= 730) {
		var w = 775;
		} else {
		var w = (screen.width * .65);
		}
	var h = (screen.height - 100);
	window.open(c,'BVKinks','width='+w+',height='+h+',top=0,left=0,scrollbars=yes,status=yes,resizable=yes');
}
	
function OpenGallery (c) {
	if (screen.width / 2 <= 730) {
		var w = 775;
		} else {
		var w = (screen.width * .65);
		}
	var h = (screen.height - 100);
	window.open(c,'BVGallery','width='+w+',height='+h+',top=0,left=0,scrollbars=yes,status=yes,resizable=yes');
}

	// Setup Expanding Sites //
function bustout(e) {
    if (document.getElementById(e).style.display == 'none') {
        document.getElementById(e).style.display = 'block';
    } else {
        document.getElementById(e).style.display = 'none';
    }
}