$(document).ready(function() {

   

    // Closing Divs - used on Notification Boxes
    $(".canhide").append("<div class='close-notification png_bg'></div>").css("position", "relative");
    $(".close-notification").click(function() {
        $(this).hide();
        $(this).parent().fadeOut(700);
    });
	
   
	
	
	
    $('.tick-all').click(
        function(){
     
            $(document).find("input[type='checkbox']").attr('checked', $(this).is(':checked'));
        }
        );
    $('.go').change(function(){
        document.location.href = $(this).val();
    })

    $('.del_row').click(function(){
       
        $(this).parent().parent().remove();
        return false;
    });

    
    $('.add_keyword_pos').click(function(){

        });
	
	
// Closing jQuery
});