$(document).ready(function(){
	var column_height = $("#left_column").outerHeight(true);
	var content_height = $("#content").outerHeight(true);
	var header_height = $("#header").outerHeight(true);
	var full_content_height = content_height + header_height;
	
	if(column_height > full_content_height) { //Column is larger than content
		var new_height = column_height - 70;
		$("#content").height(new_height);
	} else {
		$("#left_column").height(full_content_height);
	}
	
    $(".img_det").colorbox({iframe:true, innerWidth:420, innerHeight:620});
    $(".terms").colorbox({iframe:true, innerWidth:800, innerHeight:600});
	$(".login").colorbox({iframe:true, innerWidth:650, innerHeight:280});
	
	$("a[rel='edit-contact']").colorbox({width:"680px", height:"400px", iframe:true});
	$("a[rel='edit-billing']").colorbox({width:"680px", height:"400px", iframe:true});
	$("a[rel='edit-delivery']").colorbox({width:"680px", height:"400px", iframe:true});
	$("a[rel='edit-security']").colorbox({width:"680px", height:"400px", iframe:true});
	$("a[rel='edit-pref']").colorbox({width:"680px", height:"400px", iframe:true});
	$("a[rel='sizing']").colorbox({width:"1000px", height:"400px", iframe:true});
	$("a[rel='order-details']").colorbox({width:"700px", height:"550px", iframe:true});
	
	$("#loginForm").validate();
	$("#editForm").validate();
	$("#selectForm").validate();
});
